home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / mathpack.arc / START.BAS (.txt) < prev    next >
Encoding:
GW-BASIC  |  1987-05-08  |  1.4 KB  |  32 lines

  1. 10  CLS
  2. 20  SCREEN 0,0,0
  3. 30  WIDTH 80
  4. 40  KEY OFF
  5. 50  LOCATE 1,1,0
  6. 60  COLOR 7,0,0
  7. 70  LOCATE 2,15:PRINT "A note from the author(DO NOT REMOVE)."
  8. 80  LOCATE 3,10:PRINT " I have written MATH PAK with the intent that"
  9. 90  LOCATE 4,10:PRINT "it will help and accelerate solving some of the"
  10. 100  LOCATE 5,10:PRINT "many mathematical problems faced by secondary "
  11. 110  LOCATE 6,10:PRINT "school students, high school and college level"
  12. 120  LOCATE 7,10:PRINT "students and for anyone needing mathematical help."
  13. 130  LOCATE 9,10:PRINT " I hope to have 'touched base ' with the major "
  14. 140  LOCATE 10,10:PRINT "math operations, including others not commonly used."
  15. 150  LOCATE 11,10:PRINT " MATH PAK is not for retail sale, and you are encouraged"
  16. 160  LOCATE 12,10:PRINT "to let others copy this COMPLETE DISK. I have also written"
  17. 170  LOCATE 13,10:PRINT "a detailed manual that shows how the program works with"
  18. 180  LOCATE 14,10:PRINT "some key examples and solutions. But alas, due to "
  19. 190  LOCATE 15,10:PRINT "printing costs, I must charge you for the manual($ 4.00)."
  20. 200  LOCATE 16,10:PRINT " Please feel free to write to me regarding any questions,"
  21. 210  LOCATE 17,10:PRINT "general comments, bugs(not insects), and insults."
  22. 220  LOCATE 18,10:PRINT "You can also order your manual by sending a check or MO"
  23. 230  LOCATE 19,10:PRINT "to me for $ 4.00 ."
  24. 240  LOCATE 20,10:PRINT " Send to:"
  25. 250  LOCATE 20,20:PRINT "Dan Dalal"
  26. 260  LOCATE 21,20:PRINT "P.O. Box 1303"
  27. 270  LOCATE 22,20:PRINT "Cupertino, Ca. 95015-1303"
  28. 280  LOCATE 23,10:PRINT "Thank you...Press the space bar to continue..."
  29. 290  AQW$ = INKEY$
  30. 300  IF AQW$ = CHR$(32) THEN CLS:CHAIN"mp"
  31. 310  GOTO 290
  32.